Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632703 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App

svg/ cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/svg/
7 Items
  • track-outline.svg
  • moving-outline.svg
  • pause.svg
  • replay.svg
  • rain.svg
  • play.svg
  • beach.svg
  • video/ cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/video/
    4 Items
  • rain2.mp4
  • beach.mp4
  • rain.mp4
  • sunset2.mp4
  • sounds/ cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/sounds/
    2 Items
  • rain.mp3
  • beach.mp3
  • app.js cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/app.js
    176 Views
    0 Comments
    const song = document.querySelector(".song");
    const play = document.querySelector(".play");
    const replay = document.querySelector(".replay");
    const outline = document.querySelector(".moving-outline circle");
    const video = document.querySelector(".vid-container video");
    //Sounds
    const sounds = document.querySelectorAll(".sound-picker button");
    //Time Display
    style.css cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/style.css
    113 Views
    0 Comments
    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

    .app {
    height: 100vh;
    index.html cody/swapnilsparsh/30DaysOfJavaScript/80 - Meditation App/index.html
    302 Views
    0 Comments
    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
    <link rel="stylesheet" href="./style.css" />